cppcms-users Mailing List for CppCMS C++ Web Framework (Page 16)
Brought to you by:
artyom-beilis
You can subscribe to this list here.
2009 |
Jan
|
Feb
(22) |
Mar
|
Apr
(3) |
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
(15) |
Nov
(16) |
Dec
(13) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
(4) |
Feb
|
Mar
(8) |
Apr
(8) |
May
(8) |
Jun
(36) |
Jul
(63) |
Aug
(126) |
Sep
(47) |
Oct
(66) |
Nov
(46) |
Dec
(42) |
2011 |
Jan
(87) |
Feb
(24) |
Mar
(54) |
Apr
(21) |
May
(22) |
Jun
(18) |
Jul
(22) |
Aug
(101) |
Sep
(57) |
Oct
(33) |
Nov
(34) |
Dec
(66) |
2012 |
Jan
(64) |
Feb
(76) |
Mar
(73) |
Apr
(105) |
May
(93) |
Jun
(83) |
Jul
(84) |
Aug
(88) |
Sep
(57) |
Oct
(59) |
Nov
(35) |
Dec
(49) |
2013 |
Jan
(67) |
Feb
(17) |
Mar
(49) |
Apr
(64) |
May
(87) |
Jun
(64) |
Jul
(93) |
Aug
(23) |
Sep
(15) |
Oct
(16) |
Nov
(62) |
Dec
(73) |
2014 |
Jan
(5) |
Feb
(23) |
Mar
(21) |
Apr
(11) |
May
(1) |
Jun
(19) |
Jul
(27) |
Aug
(16) |
Sep
(5) |
Oct
(37) |
Nov
(12) |
Dec
(9) |
2015 |
Jan
(7) |
Feb
(7) |
Mar
(44) |
Apr
(28) |
May
(5) |
Jun
(12) |
Jul
(8) |
Aug
|
Sep
(39) |
Oct
(34) |
Nov
(30) |
Dec
(34) |
2016 |
Jan
(66) |
Feb
(23) |
Mar
(33) |
Apr
(15) |
May
(11) |
Jun
(15) |
Jul
(26) |
Aug
(4) |
Sep
(1) |
Oct
(30) |
Nov
(10) |
Dec
|
2017 |
Jan
(52) |
Feb
(9) |
Mar
(24) |
Apr
(16) |
May
(9) |
Jun
(12) |
Jul
(33) |
Aug
(8) |
Sep
|
Oct
(1) |
Nov
(2) |
Dec
(6) |
2018 |
Jan
(5) |
Feb
|
Mar
|
Apr
|
May
(14) |
Jun
(1) |
Jul
(9) |
Aug
(1) |
Sep
(13) |
Oct
(8) |
Nov
(2) |
Dec
(2) |
2019 |
Jan
(1) |
Feb
(1) |
Mar
(3) |
Apr
(3) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
2020 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(9) |
Jul
(6) |
Aug
(25) |
Sep
(10) |
Oct
(10) |
Nov
(6) |
Dec
|
2021 |
Jan
|
Feb
|
Mar
(7) |
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
(9) |
Oct
(1) |
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: CN <cn...@fa...> - 2016-07-13 15:17:16
|
> This is the clue. > > The asynchronous application does not load session information by > default - because some session backends can be blocking and may lock > the entire event loop. > So in async app you first need to call session().load() and than use it. You are my savior again! I repeatedly reminded myself of not falling into this trap, but eventually I made the same mistake this time again. Off topic: I should have passed cppcms::app::synchronous as argument to cppcms::service::applications_pool()::mount() instead. Somehow the code ends up passing asynchronous argument. This is the apparent negative side effect of bad copy-and-paste coding habit. > Artyom > > P.S.: Please open a feature request so to improve the behavior. I > noticed several times that it was causing issues for too many users I will do it as soon as SF is back on line. Best Regards, CN -- http://www.fastmail.com - The way an email service should be |
From: Artyom B. <art...@gm...> - 2016-07-13 06:14:51
|
> I am not sure if this helps.. > > int main(int argc,char **argv){ > ... > s.applications_pool().mount(cppcms::create_pool<normal_page>(),cppcms::mount_point(cppcms::mount_point::match_path_info,"^/(?:crud)/(\\d+)",1),cppcms::app::synchronous); > > s.applications_pool().mount(cppcms::create_pool<download>(),cppcms::mount_point("/da/(.+)",1),cppcms::app::asynchronous); > ... > } > This is the clue. The asynchronous application does not load session information by default - because some session backends can be blocking and may lock the entire event loop. So in async app you first need to call session().load() and than use it. Artyom P.S.: Please open a feature request so to improve the behavior. I noticed several times that it was causing issues for too many users |
From: CN <cn...@fa...> - 2016-07-12 17:31:52
|
On Tue, Jul 12, 2016, at 12:15 PM, augustin wrote: > I don't understand. > Does setting window.location.replace() causes a GET request to be sent to > the > server? Yes. This is the question I asked in SO: http://stackoverflow.com/questions/38245088/open-a-download-window-and-send-cookies-without-navigating-away-from-the-page > Or do you have an AJAX call of some sort in your javascript? window.location.replace() is called after HTML <input> is clicked roughly looks like this: i_am_clicked:function(e){ window.location.replace("/special"); } It is not called from AJAX. > > In any case, you must make sure that the cookies are sent. Server log shows that it does receives the cookie that comes with prefix. That cookie string is exactly the same as that hold by browsers. > My guess is that it's nothing to do with the URL, but with the way the > request > to the server is generated. The request from client in question has one thing different from others - it is initiated by javascript call window.location.replace() or its flavors, while other "valid" requests are initiated by human mouse clicks. > If the browser directly requests http://localhost/special, the cookies > would > be set, won't it? I think that server confirms that too according to this server code: for(auto const &c : request().cookies()) BOOSTER_DEBUG("COOKIES") << c.first << ":" << c.second.path() << "==>" << c.second.value(); Cookie value associated with key "prefix" is written to log. > Just shooting in the dark, in the hope that it may shed some light in the > situation. Best Regards, CN -- http://www.fastmail.com - Same, same, but different... |
From: CN <cn...@fa...> - 2016-07-12 17:13:23
|
On Mon, Jul 11, 2016, at 10:07 PM, Artyom Beilis wrote: > I see, > > does it happend with server side session storage? No. I have been always using only client side storage. This is the complete and real server configuration parameter "session": "session":{ "location":"client", "expire":"renew", "timeout":2592000, "cookies":{ "prefix":"prefix" }, "client":{ "hmac":"sha512", "hmac_key":"(redacted)", "cbc":"aes192", "cbc_key":"(redacted)" } }, > Can you track all the requests using browser debugger and see what is > transferred in each request. Yes, browser development tool shows only one "network" entry. Although I feel the information it reveals is not quite useful, they are as follows: 1 requests 168 B transferred Name:http://localhost:82/da/1/t4_722/f3/1/f2/2009-10-28%2000%3A00%3A00%2B08/f1/1 Type:document Initiator:82/script/download.html Size:168 B Time:7 ms Here are the real URL's sent from client to server: URL "/normal" is redacted from this real URL: <a href="/crud/6108" target="_blank"></a> window.location.replace("/special") is redacted from this real javascript: window.location.replace("/da/1/t4_722/f3/1/f2/2009-10-28%2000%3A00%3A00%2B08/f1/1"); The following two server codes void normal_page::main(std::string url) { //"url" holds "normal". for(auto const &c : request().cookies()) BOOSTER_DEBUG("COOKIES") << c.first << "==>" << c.second.value(); BOOSTER_DEBUG("1 is logged") << request().is_set("my_cookie"); } void download::main(std::string url) { //"url" holds "special". for(auto const &c : request().cookies()) BOOSTER_DEBUG("COOKIES") << c.first << "==>" << c.second.value(); BOOSTER_DEBUG("0 is logged") << request().is_set("my_cookie"); } and browser development tool all show the following same real cookie "prefix": CO5HS8grAi6Oa6qAqt97ZN2lIS8DDuI2OihXBV_YI-60u6zi9dbmdHb-w1XljS0HYDPlAD8AF_z2yJm2-1O0kWNtYrnxgGBGsZ8Oh0rXusajLV8-d2IK4x7mpVAedpzOcYhuuRDsHMcfdC0sXJvdTTSPy2_Q5bC9qPYzCn_kHLM90CdnqkkV_u41KpUK3XC-cm5XL82VPVKZL9UcI_Bm81-AWlP-lp-9R5HKBnfVr8FVN9-U20Y7L73wA0WFPEzEF > What you are telling me is quite strage. > I am not sure if this helps.. int main(int argc,char **argv){ ... s.applications_pool().mount(cppcms::create_pool<normal_page>(),cppcms::mount_point(cppcms::mount_point::match_path_info,"^/(?:crud)/(\\d+)",1),cppcms::app::synchronous); s.applications_pool().mount(cppcms::create_pool<download>(),cppcms::mount_point("/da/(.+)",1),cppcms::app::asynchronous); ... } window.location.replace() is called from the page requested from URL "/crud/6108". As I mentioned earlier in this thread, (1) Server recognizes all incoming cookies when it receives various requests manually sent from user's mouse clicks on buttons in the page requested from URL "/crud/6108". (2) Server denies the existence of incoming cookies only when the requested URL is initiated by javascript call window.location.replace(). Both Chrome and Firefox are treated by server in the same way. (3) Regardless of which initiation method from client, server prints the same signed and encrypted cookie value named "prefix". Best Regards, CN -- http://www.fastmail.com - The way an email service should be |
From: augustin <aug...@ov...> - 2016-07-12 04:32:04
|
On Sunday, July 10, 2016 01:37:09 PM CN wrote: > I can not figure out why server recognizes all the sent in cookies when > it is requested for "http://localhost/normal", but it denies all the > sent in cookies when it is requested for "http://localhost/special" by > client javascript call window.location.replace(). I don't understand. Does setting window.location.replace() causes a GET request to be sent to the server? Or do you have an AJAX call of some sort in your javascript? In any case, you must make sure that the cookies are sent. My guess is that it's nothing to do with the URL, but with the way the request to the server is generated. If the browser directly requests http://localhost/special, the cookies would be set, won't it? Just shooting in the dark, in the hope that it may shed some light in the situation. augustin. . |
From: Artyom B. <art...@gm...> - 2016-07-11 14:07:36
|
I see, does it happend with server side session storage? Can you track all the requests using browser debugger and see what is transferred in each request. What you are telling me is quite strage. Artyom > - Server responds with the page. > > - Client gets the page from "http://localhost/normal". > > - I manually manipulate the page through browser and cause this > javascript to be called: > window.location.replace("http://localhost/special"); > (I do this in order to download a static file from > "http://localhost/special" without navigating away the current page.) > > - Server receives the request for "http://localhost/special" along with > the cookie encrypted in prefix same as the one it was requested for page > "http://localhost/normal". However, > session().is_set("my_cookie"); > returns false this time! > > I can not figure out why server recognizes all the sent in cookies when > it is requested for "http://localhost/normal", but it denies all the > sent in cookies when it is requested for "http://localhost/special" by > client javascript call window.location.replace(). > > Any idea? Please! > > Best Regards, > CN > > -- > http://www.fastmail.com - mmm... Fastmail... > > > ------------------------------------------------------------------------------ > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San > Francisco, CA to explore cutting-edge tech and listen to tech luminaries > present their vision of the future. This family event has something for > everyone, including kids. Get more information and register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users |
From: CN <cn...@fa...> - 2016-07-10 05:37:16
|
On Sun, Jul 10, 2016, at 02:23 AM, Artyom Beilis wrote: > Session values are not stored in various cookies but rather in the > single session cookie defined by prefix. > > Note: you can expose values from server side to client using > session().expose feature and the value will be transferred > to the client but the session would never use it as it isn't secure > only the data stored withing CppCMS session/and its cookie > will be used regardless the other cookies defined. > > session().is_set(...) looks into the session not the various cookies. Many thanks for the explanation! I am still stuck by the original problem. It happens in the following order: - I manually navigate browser to URL "http://localhost/normal". - Browser sends over all cookies to server. - Server receives the request and recognizes all cookies encrypted in prefix: session().is_set("my_cookie"); returns true (So far so good. As everyone else has already experienced - server has correctly processed such requests countless number of times without problem.) - Server responds with the page. - Client gets the page from "http://localhost/normal". - I manually manipulate the page through browser and cause this javascript to be called: window.location.replace("http://localhost/special"); (I do this in order to download a static file from "http://localhost/special" without navigating away the current page.) - Server receives the request for "http://localhost/special" along with the cookie encrypted in prefix same as the one it was requested for page "http://localhost/normal". However, session().is_set("my_cookie"); returns false this time! I can not figure out why server recognizes all the sent in cookies when it is requested for "http://localhost/normal", but it denies all the sent in cookies when it is requested for "http://localhost/special" by client javascript call window.location.replace(). Any idea? Please! Best Regards, CN -- http://www.fastmail.com - mmm... Fastmail... |
From: Artyom B. <art...@gm...> - 2016-07-09 18:23:30
|
Session values are not stored in various cookies but rather in the single session cookie defined by prefix. Note: you can expose values from server side to client using session().expose feature and the value will be transferred to the client but the session would never use it as it isn't secure only the data stored withing CppCMS session/and its cookie will be used regardless the other cookies defined. session().is_set(...) looks into the session not the various cookies. Artyom On Sat, Jul 9, 2016 at 7:34 PM, CN <cn...@fa...> wrote: > On Sat, Jul 9, 2016, at 08:02 PM, Artyom Beilis wrote: >> Browser does not send path information about cookies it sends to >> server in HTTP headers, actually it only sends cookie name and value - >> not domain, expiration, path or other parameters. Only server does. >> That is why you don't get this information in request().cookies() - >> server just does not have one. > > Thank for answering my first question! > > After client gets the page from "http://localhost/normal", it calls this > javascript: > > window.location.replace("http://localhost/special"); > > Upon receiving the request, server shows that request().cookies() holds > item "prefix_my_cookie". On the other hand, > session().is_set("my_cookie") returns false. > > Why server denies the existence of cookie "my_cookie"? > > Best Regards, > CN > > -- > http://www.fastmail.com - mmm... Fastmail... > > > ------------------------------------------------------------------------------ > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San > Francisco, CA to explore cutting-edge tech and listen to tech luminaries > present their vision of the future. This family event has something for > everyone, including kids. Get more information and register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users |
From: CN <cn...@fa...> - 2016-07-09 16:34:36
|
On Sat, Jul 9, 2016, at 08:02 PM, Artyom Beilis wrote: > Browser does not send path information about cookies it sends to > server in HTTP headers, actually it only sends cookie name and value - > not domain, expiration, path or other parameters. Only server does. > That is why you don't get this information in request().cookies() - > server just does not have one. Thank for answering my first question! After client gets the page from "http://localhost/normal", it calls this javascript: window.location.replace("http://localhost/special"); Upon receiving the request, server shows that request().cookies() holds item "prefix_my_cookie". On the other hand, session().is_set("my_cookie") returns false. Why server denies the existence of cookie "my_cookie"? Best Regards, CN -- http://www.fastmail.com - mmm... Fastmail... |
From: Artyom B. <art...@gm...> - 2016-07-09 12:02:43
|
Browser does not send path information about cookies it sends to server in HTTP headers, actually it only sends cookie name and value - not domain, expiration, path or other parameters. Only server does. That is why you don't get this information in request().cookies() - server just does not have one. Artyom On Fri, Jul 8, 2016 at 1:24 PM, CN <cn...@fa...> wrote: > Server configuration follows: > > "session":{ > "location":"client", > "cookies":{ > "prefix":"prefix" > //"path":"/" > }, > } > > Browser shows that the path of every cookie is set to "/" by > session().set("name","value"). So far so good. > > This is server debugging code: > > for(auto const &c : request().cookies()) > BOOSTER_DEBUG("COOKIES") << c.first << ":" << c.second.path(); > BOOSTER_DEBUG("mc") << session().is_set("my_cookie"); > > Client requests for URL "http://localhost/normal" and above server code > writes the following log as expected except for one thing - > cookie.path() returning empty string: > > 2016-07-08 17:35:31; COOKIES, debug: prefix: > 2016-07-08 17:35:31; COOKIES, debug: prefix_c1: > 2016-07-08 17:35:31; COOKIES, debug: prefix_my_cookie: > 2016-07-08 17:35:31; mc, debug: 1 > > Question: Is it by design that cookie.path() returns empty string here? > > Now, after client gets the page from "http://localhost/normal", it calls > this javascript: > > window.location.replace("http://localhost/special"); > > the same above server code now writes these log: > > 2016-07-08 17:35:31; COOKIES, debug: prefix: > 2016-07-08 17:35:31; COOKIES, debug: prefix_c1: > 2016-07-08 17:35:31; COOKIES, debug: prefix_my_cookie: > 2016-07-08 17:35:31; mc, debug: 0 > > indicating that cookie "my_cookie" is not set. > I am puzzled by the behavior of cookies - > request().cookies() indicates that cookie "my_cookie" exists > but session().is_set("my_cookie") says it doesn't. > How can it be so? > Is the empty cookie.path() making the trouble? > > Best Regards, > CN > > -- > http://www.fastmail.com - A fast, anti-spam email service. > > > ------------------------------------------------------------------------------ > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San > Francisco, CA to explore cutting-edge tech and listen to tech luminaries > present their vision of the future. This family event has something for > everyone, including kids. Get more information and register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users |
From: CN <cn...@fa...> - 2016-07-08 10:24:50
|
Server configuration follows: "session":{ "location":"client", "cookies":{ "prefix":"prefix" //"path":"/" }, } Browser shows that the path of every cookie is set to "/" by session().set("name","value"). So far so good. This is server debugging code: for(auto const &c : request().cookies()) BOOSTER_DEBUG("COOKIES") << c.first << ":" << c.second.path(); BOOSTER_DEBUG("mc") << session().is_set("my_cookie"); Client requests for URL "http://localhost/normal" and above server code writes the following log as expected except for one thing - cookie.path() returning empty string: 2016-07-08 17:35:31; COOKIES, debug: prefix: 2016-07-08 17:35:31; COOKIES, debug: prefix_c1: 2016-07-08 17:35:31; COOKIES, debug: prefix_my_cookie: 2016-07-08 17:35:31; mc, debug: 1 Question: Is it by design that cookie.path() returns empty string here? Now, after client gets the page from "http://localhost/normal", it calls this javascript: window.location.replace("http://localhost/special"); the same above server code now writes these log: 2016-07-08 17:35:31; COOKIES, debug: prefix: 2016-07-08 17:35:31; COOKIES, debug: prefix_c1: 2016-07-08 17:35:31; COOKIES, debug: prefix_my_cookie: 2016-07-08 17:35:31; mc, debug: 0 indicating that cookie "my_cookie" is not set. I am puzzled by the behavior of cookies - request().cookies() indicates that cookie "my_cookie" exists but session().is_set("my_cookie") says it doesn't. How can it be so? Is the empty cookie.path() making the trouble? Best Regards, CN -- http://www.fastmail.com - A fast, anti-spam email service. |
From: ConKreter <in...@co...> - 2016-07-07 18:35:26
|
I could track down the problem. Looks like the official PCRE lib is different on linux. I could build cppcms without a problem on a virtual Ubuntu. I downloaded pcre from here: https://sourceforge.net/projects/pcre/files/ And I ended up with these files (All Debug in MDd ): http://prntscr.com/bq20z8 CppCMS might actually want different files so less splitted? I am just guessing here. But I double confirmed with a colleque and I made no mistake building it with nmake and cmake is reporting no errors. Kind Regards Adrian Kreter -----Ursprüngliche Nachricht----- Von: Artyom Beilis [mailto:art...@gm...] Gesendet: Sonntag, 3. Juli 2016 20:42 An: cpp...@li... Betreff: Re: [Cppcms-users] Visual Studio 2015 1st read the instructions _carefully_ http://cppcms.com/wikipp/en/page/cppcms_1x_build http://cppcms.com/wikipp/en/page/notes_for_windows_users You are clearly trying to use MSVC project instead of nmake makefiles. MSVC projects are not supported. If it still fails bring the full output of cmake and nmake runs + CMakeCache.txt file content in the build directory. Artyom Beilis On Sun, Jul 3, 2016 at 3:46 PM, ConKreter <in...@co...> wrote: > Some symbols are not defined. Some symbols are defined twice. > http://puu.sh/pOHTu/1ae250688e.png > > Main Problem seems to be booster. It is completely failing. > Is someone using it on windows? > Help would be awesome. If someone has a complete folder with all > features and dependencies for MWSC 2015 I would happily buy it. > > -----Ursprüngliche Nachricht----- > Von: Artyom Beilis [mailto:art...@gm...] > Gesendet: Samstag, 2. Juli 2016 21:17 > An: cpp...@li... > Betreff: Re: [Cppcms-users] Visual Studio 2015 > > What problems do you have? What dependencies you fail to build. > > The bare minimal dependencies to build CppCMS with MSVC are: > > - cmake & Python2 (trivial to install) > - zlib and pcre - widely used libraries. > > So what exactly fails for you? > > > On Fri, Jul 1, 2016 at 2:12 AM, ConKreter <in...@co...> wrote: >> Hello everyone, >> >> was someone able to make it work with MSVC 2015? >> Could this person upload his folder with all dependencies? I cannot >> make it work. >> >> If needed I would pay for it. >> >> Kind Regards >> >> Adrian Kreter >> >> >> >> >> --------------------------------------------------------------------- >> - >> -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T >> Park in San Francisco, CA to explore cutting-edge tech and listen to >> tech luminaries present their vision of the future. This family event >> has something for everyone, including kids. Get more information and >> register today. >> http://sdm.link/attshape >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> > > ---------------------------------------------------------------------- > ------ > -- > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in > San Francisco, CA to explore cutting-edge tech and listen to tech > luminaries present their vision of the future. This family event has > something for everyone, including kids. Get more information and register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > > > ---------------------------------------------------------------------- > -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T > Park in San Francisco, CA to explore cutting-edge tech and listen to > tech luminaries present their vision of the future. This family event > has something for everyone, including kids. Get more information and > register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users ------------------------------------------------------------------------------ Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to explore cutting-edge tech and listen to tech luminaries present their vision of the future. This family event has something for everyone, including kids. Get more information and register today. http://sdm.link/attshape _______________________________________________ Cppcms-users mailing list Cpp...@li... https://lists.sourceforge.net/lists/listinfo/cppcms-users |
From: Info Conkreter.d. <in...@co...> - 2016-07-07 00:49:19
|
Any reply to the Problem? I was not ignoring what you told me. I am now only using pcre and zlib which reduced the amount of errors and I am using Nmake directly. Do you want the out print? I thought it might help to find someone with the same Problem. Basically you are ignoring anything I tell you... How do you expect to get any kind of help? ---------- ------------------------------------------------------------------------------ Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to explore cutting-edge tech and listen to tech luminaries present their vision of the future. This family event has something for everyone, including kids. Get more information and register today. http://sdm.link/attshape ---------- _______________________________________________ Cppcms-users mailing list Cpp...@li... https://lists.sourceforge.net/lists/listinfo/cppcms-users ---------- ------------------------------------------------------------------------------ Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to explore cutting-edge tech and listen to tech luminaries present their vision of the future. This family event has something for everyone, including kids. Get more information and register today. http://sdm.link/attshape ---------- _______________________________________________ Cppcms-users mailing list Cpp...@li... https://lists.sourceforge.net/lists/listinfo/cppcms-users |
From: Info Conkreter.d. <in...@co...> - 2016-07-06 07:50:10
|
I was not ignoring what you told me. I am now only using pcre and zlib which reduced the amount of errors and I am using Nmake directly. Do you want the out print? I thought it might help to find someone with the same Problem. Basically you are ignoring anything I tell you... How do you expect to get any kind of help? ---------- ------------------------------------------------------------------------------ Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to explore cutting-edge tech and listen to tech luminaries present their vision of the future. This family event has something for everyone, including kids. Get more information and register today. http://sdm.link/attshape ---------- _______________________________________________ Cppcms-users mailing list Cpp...@li... https://lists.sourceforge.net/lists/listinfo/cppcms-users |
From: Artyom B. <art...@gm...> - 2016-07-05 20:25:45
|
Basically you are ignoring anything I tell you... How do you expect to get any kind of help? |
From: ConKreter <in...@co...> - 2016-07-05 19:47:39
|
Basicly I have the same problem as this guy. Same dependencies are missing. http://stackoverflow.com/questions/12657186/cppcms-lots-of-unresolved-external-symbols -----Ursprüngliche Nachricht----- Von: Artyom Beilis [mailto:art...@gm...] Gesendet: Dienstag, 5. Juli 2016 09:18 An: cpp...@li... Betreff: Re: [Cppcms-users] Visual Studio 2015 On Tue, Jul 5, 2016 at 2:27 AM, Info Conkreter.de <in...@co...> wrote: > Yes I found that link too. Strange that I cannot outout CppCms as > Visual studio Projects with Cmake. Then building is way more easy. It isn't. MSVC has two independent and incompatable runtimes Release and Debug. If you by mistake link release to debug binaries or other way around you'll get crashes and multiple issues all over your code. The debug and release builds are "buillt-in" into projects/solutions - this means the CMake should find _all_ relevant libraries for both flavors and pic correct ones. The naming convension for release/debug libraries is not standardized and it is very problematic and error prone. That is why it is much safer to run separate builds with separate and independent runs knowing that use wouldn't switch in project Debug to Release and make damage that I can't fix. > And this error is gone but a many linker mistakes appear. What error with dbghelp.lib or other linker errors? Regarding dbghelp I suspect some misconfiguration between compiler and directories. > We have an existent Windows codebase and we really cant port to linux. > I tried CppCMS under Ubuntu and it is great fun working with it. But we need a Windows solution. > CppCMS works well on windows. But build procedure on Windows with multiple dependencies is __always__ tricky for any kind of project. It is clear but you need to very verbose in the data you provide: 1. Use terminal (via VS menu) only - don't use CMake GUI or stuff like that because you don't know what compiler it will pic without a content of the 2. Add -DCMAKE_VERBOSE_MAKEFILE=TRUE option so I can see exact parameters passed to compiler and linker 3. Make CLEAN build from start - cmake than nmake - increase history of the terminal windows and the content of the window paste there (NOT screenshot!) - full content from the first cmake command you run to the last error. 4. Once again - always add CMakeCache.txt - for example in previous mail I have seen you specified PUTH instead of PATH in one of the parameters. One last stuff if you see a error that compiler prints in German - can you please translate what it tells because the only clue in the screenshot was error code given by MSVC compiler. Once again: read this: http://cppcms.com/wikipp/en/page/notes_for_windows_users#Building.and.using.CppCMS.under.Visual.Studio I'd also suggest to start from pcre and zlib dependencies only and see that all works and later add ICU. Artyom > No freelance or someone who can make it work and send it over? > > Kind Regards > Adrian Kreter > > > maybe this helps (I have no idea of windows developing, why don't you > give linux a try? ;) ) > > http://stackoverflow.com/questions/9522834/unresolved-symbol-errors-wi > thin-dll > > Regards > Marcel > > > Ps. next time try to output english errors and not the german ones :) > > On 07/04/2016 03:04 PM, ConKreter wrote: >> Now I tried with the 64bit dev console and with NMAKE (all >> dependencies are also with 64bit). >> http://puu.sh/pPTjN/4a44d08941.png >> >> Hope we can figure it out. I would love to work with my team with your library. >> Kind Regards >> Adrian Kreter >> >> -----Ursprüngliche Nachricht----- >> Von: Artyom Beilis [mailto:art...@gm...] >> Gesendet: Sonntag, 3. Juli 2016 20:42 >> An: cpp...@li... >> Betreff: Re: [Cppcms-users] Visual Studio 2015 >> >> 1st read the instructions _carefully_ >> >> http://cppcms.com/wikipp/en/page/cppcms_1x_build >> http://cppcms.com/wikipp/en/page/notes_for_windows_users >> >> You are clearly trying to use MSVC project instead of nmake makefiles. >> MSVC projects are not supported. >> >> If it still fails bring the full output of cmake and nmake runs + >> CMakeCache.txt file content in the build directory. >> >> Artyom Beilis >> >> On Sun, Jul 3, 2016 at 3:46 PM, ConKreter <in...@co...> wrote: >>> Some symbols are not defined. Some symbols are defined twice. >>> http://puu.sh/pOHTu/1ae250688e.png >>> >>> Main Problem seems to be booster. It is completely failing. >>> Is someone using it on windows? >>> Help would be awesome. If someone has a complete folder with all >>> features and dependencies for MWSC 2015 I would happily buy it. >>> >>> -----Ursprüngliche Nachricht----- >>> Von: Artyom Beilis [mailto:art...@gm...] >>> Gesendet: Samstag, 2. Juli 2016 21:17 >>> An: cpp...@li... >>> Betreff: Re: [Cppcms-users] Visual Studio 2015 >>> >>> What problems do you have? What dependencies you fail to build. >>> >>> The bare minimal dependencies to build CppCMS with MSVC are: >>> >>> - cmake & Python2 (trivial to install) >>> - zlib and pcre - widely used libraries. >>> >>> So what exactly fails for you? >>> >>> >>> On Fri, Jul 1, 2016 at 2:12 AM, ConKreter <in...@co...> wrote: >>>> Hello everyone, >>>> >>>> was someone able to make it work with MSVC 2015? >>>> Could this person upload his folder with all dependencies? I cannot >>>> make it work. >>>> >>>> If needed I would pay for it. >>>> >>>> Kind Regards >>>> >>>> Adrian Kreter >>>> >>>> >>>> >>>> >>>> ------------------------------------------------------------------- >>>> -- >>>> - >>>> -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at >>>> AT&T Park in San Francisco, CA to explore cutting-edge tech and >>>> listen to tech luminaries present their vision of the future. This >>>> family event has something for everyone, including kids. Get more >>>> information and register today. >>>> http://sdm.link/attshape >>>> _______________________________________________ >>>> Cppcms-users mailing list >>>> Cpp...@li... >>>> https://lists.sourceforge.net/lists/listinfo/cppcms-users >>>> >>> >>> -------------------------------------------------------------------- >>> -- >>> ------ >>> -- >>> Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in >>> San Francisco, CA to explore cutting-edge tech and listen to tech >>> luminaries present their vision of the future. This family event has >>> something for everyone, including kids. Get more information and >>> register today. >>> http://sdm.link/attshape >>> _______________________________________________ >>> Cppcms-users mailing list >>> Cpp...@li... >>> https://lists.sourceforge.net/lists/listinfo/cppcms-users >>> >>> >>> -------------------------------------------------------------------- >>> -- >>> -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T >>> Park in San Francisco, CA to explore cutting-edge tech and listen to >>> tech luminaries present their vision of the future. This family >>> event has something for everyone, including kids. Get more >>> information and register today. >>> http://sdm.link/attshape >>> _______________________________________________ >>> Cppcms-users mailing list >>> Cpp...@li... >>> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> >> --------------------------------------------------------------------- >> --------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T >> Park in San Francisco, CA to explore cutting-edge tech and listen to >> tech luminaries present their vision of the future. This family event >> has something for everyone, including kids. Get more information and >> register today. >> http://sdm.link/attshape >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> >> >> >> --------------------------------------------------------------------- >> --------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T >> Park in San Francisco, CA to explore cutting-edge tech and listen to >> tech luminaries present their vision of the future. This family event >> has something for everyone, including kids. Get more information and >> register today. >> http://sdm.link/attshape >> >> >> >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> > > > > > ---------- > ---------------------------------------------------------------------- > -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T > Park in San Francisco, CA to explore cutting-edge tech and listen to > tech luminaries present their vision of the future. This family event > has something for everyone, including kids. Get more information and > register today. > http://sdm.link/attshape > > > ---------- > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > > > > > ---------------------------------------------------------------------- > -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T > Park in San Francisco, CA to explore cutting-edge tech and listen to > tech luminaries present their vision of the future. This family event > has something for everyone, including kids. Get more information and > register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users ------------------------------------------------------------------------------ Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to explore cutting-edge tech and listen to tech luminaries present their vision of the future. This family event has something for everyone, including kids. Get more information and register today. http://sdm.link/attshape _______________________________________________ Cppcms-users mailing list Cpp...@li... https://lists.sourceforge.net/lists/listinfo/cppcms-users |
From: Artyom B. <art...@gm...> - 2016-07-05 07:18:23
|
On Tue, Jul 5, 2016 at 2:27 AM, Info Conkreter.de <in...@co...> wrote: > Yes I found that link too. Strange that I cannot outout CppCms as Visual > studio Projects with Cmake. Then building is way more easy. It isn't. MSVC has two independent and incompatable runtimes Release and Debug. If you by mistake link release to debug binaries or other way around you'll get crashes and multiple issues all over your code. The debug and release builds are "buillt-in" into projects/solutions - this means the CMake should find _all_ relevant libraries for both flavors and pic correct ones. The naming convension for release/debug libraries is not standardized and it is very problematic and error prone. That is why it is much safer to run separate builds with separate and independent runs knowing that use wouldn't switch in project Debug to Release and make damage that I can't fix. > And this error is gone but a many linker mistakes appear. What error with dbghelp.lib or other linker errors? Regarding dbghelp I suspect some misconfiguration between compiler and directories. > We have an existent Windows codebase and we really cant port to linux. I tried CppCMS under Ubuntu and > it is great fun working with it. But we need a Windows solution. > CppCMS works well on windows. But build procedure on Windows with multiple dependencies is __always__ tricky for any kind of project. It is clear but you need to very verbose in the data you provide: 1. Use terminal (via VS menu) only - don't use CMake GUI or stuff like that because you don't know what compiler it will pic without a content of the 2. Add -DCMAKE_VERBOSE_MAKEFILE=TRUE option so I can see exact parameters passed to compiler and linker 3. Make CLEAN build from start - cmake than nmake - increase history of the terminal windows and the content of the window paste there (NOT screenshot!) - full content from the first cmake command you run to the last error. 4. Once again - always add CMakeCache.txt - for example in previous mail I have seen you specified PUTH instead of PATH in one of the parameters. One last stuff if you see a error that compiler prints in German - can you please translate what it tells because the only clue in the screenshot was error code given by MSVC compiler. Once again: read this: http://cppcms.com/wikipp/en/page/notes_for_windows_users#Building.and.using.CppCMS.under.Visual.Studio I'd also suggest to start from pcre and zlib dependencies only and see that all works and later add ICU. Artyom > No freelance or someone who can make it work and send it over? > > Kind Regards > Adrian Kreter > > > maybe this helps (I have no idea of windows developing, why don't you > give linux a try? ;) ) > > http://stackoverflow.com/questions/9522834/unresolved-symbol-errors-within-dll > > Regards > Marcel > > > Ps. next time try to output english errors and not the german ones :) > > On 07/04/2016 03:04 PM, ConKreter wrote: >> Now I tried with the 64bit dev console and with NMAKE (all dependencies are >> also with 64bit). >> http://puu.sh/pPTjN/4a44d08941.png >> >> Hope we can figure it out. I would love to work with my team with your library. >> Kind Regards >> Adrian Kreter >> >> -----Ursprüngliche Nachricht----- >> Von: Artyom Beilis [mailto:art...@gm...] >> Gesendet: Sonntag, 3. Juli 2016 20:42 >> An: cpp...@li... >> Betreff: Re: [Cppcms-users] Visual Studio 2015 >> >> 1st read the instructions _carefully_ >> >> http://cppcms.com/wikipp/en/page/cppcms_1x_build >> http://cppcms.com/wikipp/en/page/notes_for_windows_users >> >> You are clearly trying to use MSVC project instead of nmake makefiles. >> MSVC projects are not supported. >> >> If it still fails bring the full output of cmake and nmake runs + >> CMakeCache.txt file content in the build directory. >> >> Artyom Beilis >> >> On Sun, Jul 3, 2016 at 3:46 PM, ConKreter <in...@co...> wrote: >>> Some symbols are not defined. Some symbols are defined twice. >>> http://puu.sh/pOHTu/1ae250688e.png >>> >>> Main Problem seems to be booster. It is completely failing. >>> Is someone using it on windows? >>> Help would be awesome. If someone has a complete folder with all >>> features and dependencies for MWSC 2015 I would happily buy it. >>> >>> -----Ursprüngliche Nachricht----- >>> Von: Artyom Beilis [mailto:art...@gm...] >>> Gesendet: Samstag, 2. Juli 2016 21:17 >>> An: cpp...@li... >>> Betreff: Re: [Cppcms-users] Visual Studio 2015 >>> >>> What problems do you have? What dependencies you fail to build. >>> >>> The bare minimal dependencies to build CppCMS with MSVC are: >>> >>> - cmake & Python2 (trivial to install) >>> - zlib and pcre - widely used libraries. >>> >>> So what exactly fails for you? >>> >>> >>> On Fri, Jul 1, 2016 at 2:12 AM, ConKreter <in...@co...> wrote: >>>> Hello everyone, >>>> >>>> was someone able to make it work with MSVC 2015? >>>> Could this person upload his folder with all dependencies? I cannot >>>> make it work. >>>> >>>> If needed I would pay for it. >>>> >>>> Kind Regards >>>> >>>> Adrian Kreter >>>> >>>> >>>> >>>> >>>> --------------------------------------------------------------------- >>>> - >>>> -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T >>>> Park in San Francisco, CA to explore cutting-edge tech and listen to >>>> tech luminaries present their vision of the future. This family event >>>> has something for everyone, including kids. Get more information and >>>> register today. >>>> http://sdm.link/attshape >>>> _______________________________________________ >>>> Cppcms-users mailing list >>>> Cpp...@li... >>>> https://lists.sourceforge.net/lists/listinfo/cppcms-users >>>> >>> >>> ---------------------------------------------------------------------- >>> ------ >>> -- >>> Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in >>> San Francisco, CA to explore cutting-edge tech and listen to tech >>> luminaries present their vision of the future. This family event has >>> something for everyone, including kids. Get more information and register >>> today. >>> http://sdm.link/attshape >>> _______________________________________________ >>> Cppcms-users mailing list >>> Cpp...@li... >>> https://lists.sourceforge.net/lists/listinfo/cppcms-users >>> >>> >>> ---------------------------------------------------------------------- >>> -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T >>> Park in San Francisco, CA to explore cutting-edge tech and listen to >>> tech luminaries present their vision of the future. This family event >>> has something for everyone, including kids. Get more information and >>> register today. >>> http://sdm.link/attshape >>> _______________________________________________ >>> Cppcms-users mailing list >>> Cpp...@li... >>> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> >> ------------------------------------------------------------------------------ >> Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San >> Francisco, CA to explore cutting-edge tech and listen to tech luminaries >> present their vision of the future. This family event has something for >> everyone, including kids. Get more information and register today. >> http://sdm.link/attshape >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> >> >> >> ------------------------------------------------------------------------------ >> Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San >> Francisco, CA to explore cutting-edge tech and listen to tech luminaries >> present their vision of the future. This family event has something for >> everyone, including kids. Get more information and register today. >> http://sdm.link/attshape >> >> >> >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> > > > > > ---------- > ------------------------------------------------------------------------------ > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San > Francisco, CA to explore cutting-edge tech and listen to tech luminaries > present their vision of the future. This family event has something for > everyone, including kids. Get more information and register today. > http://sdm.link/attshape > > > ---------- > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > > > > > ------------------------------------------------------------------------------ > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San > Francisco, CA to explore cutting-edge tech and listen to tech luminaries > present their vision of the future. This family event has something for > everyone, including kids. Get more information and register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users |
From: Info Conkreter.d. <in...@co...> - 2016-07-04 23:28:06
|
Yes I found that link too. Strange that I cannot outout CppCms as Visual studio Projects with Cmake. Then building is way more easy. And this error is gone but a many linker mistakes appear. We have an existent Windows codebase and we really cant port to linux. I tried CppCMS under Ubuntu and it is great fun working with it. But we need a Windows solution. No freelance or someone who can make it work and send it over? Kind Regards Adrian Kreter maybe this helps (I have no idea of windows developing, why don't you give linux a try? ;) ) http://stackoverflow.com/questions/9522834/unresolved-symbol-errors-within-dll Regards Marcel Ps. next time try to output english errors and not the german ones :) On 07/04/2016 03:04 PM, ConKreter wrote: > Now I tried with the 64bit dev console and with NMAKE (all dependencies are > also with 64bit). > http://puu.sh/pPTjN/4a44d08941.png > > Hope we can figure it out. I would love to work with my team with your library. > Kind Regards > Adrian Kreter > > -----Ursprüngliche Nachricht----- > Von: Artyom Beilis [mailto:art...@gm...] > Gesendet: Sonntag, 3. Juli 2016 20:42 > An: cpp...@li... > Betreff: Re: [Cppcms-users] Visual Studio 2015 > > 1st read the instructions _carefully_ > > http://cppcms.com/wikipp/en/page/cppcms_1x_build > http://cppcms.com/wikipp/en/page/notes_for_windows_users > > You are clearly trying to use MSVC project instead of nmake makefiles. > MSVC projects are not supported. > > If it still fails bring the full output of cmake and nmake runs + > CMakeCache.txt file content in the build directory. > > Artyom Beilis > > On Sun, Jul 3, 2016 at 3:46 PM, ConKreter <in...@co...> wrote: >> Some symbols are not defined. Some symbols are defined twice. >> http://puu.sh/pOHTu/1ae250688e.png >> >> Main Problem seems to be booster. It is completely failing. >> Is someone using it on windows? >> Help would be awesome. If someone has a complete folder with all >> features and dependencies for MWSC 2015 I would happily buy it. >> >> -----Ursprüngliche Nachricht----- >> Von: Artyom Beilis [mailto:art...@gm...] >> Gesendet: Samstag, 2. Juli 2016 21:17 >> An: cpp...@li... >> Betreff: Re: [Cppcms-users] Visual Studio 2015 >> >> What problems do you have? What dependencies you fail to build. >> >> The bare minimal dependencies to build CppCMS with MSVC are: >> >> - cmake & Python2 (trivial to install) >> - zlib and pcre - widely used libraries. >> >> So what exactly fails for you? >> >> >> On Fri, Jul 1, 2016 at 2:12 AM, ConKreter <in...@co...> wrote: >>> Hello everyone, >>> >>> was someone able to make it work with MSVC 2015? >>> Could this person upload his folder with all dependencies? I cannot >>> make it work. >>> >>> If needed I would pay for it. >>> >>> Kind Regards >>> >>> Adrian Kreter >>> >>> >>> >>> >>> --------------------------------------------------------------------- >>> - >>> -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T >>> Park in San Francisco, CA to explore cutting-edge tech and listen to >>> tech luminaries present their vision of the future. This family event >>> has something for everyone, including kids. Get more information and >>> register today. >>> http://sdm.link/attshape >>> _______________________________________________ >>> Cppcms-users mailing list >>> Cpp...@li... >>> https://lists.sourceforge.net/lists/listinfo/cppcms-users >>> >> >> ---------------------------------------------------------------------- >> ------ >> -- >> Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in >> San Francisco, CA to explore cutting-edge tech and listen to tech >> luminaries present their vision of the future. This family event has >> something for everyone, including kids. Get more information and register >> today. >> http://sdm.link/attshape >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> >> >> ---------------------------------------------------------------------- >> -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T >> Park in San Francisco, CA to explore cutting-edge tech and listen to >> tech luminaries present their vision of the future. This family event >> has something for everyone, including kids. Get more information and >> register today. >> http://sdm.link/attshape >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users > > ------------------------------------------------------------------------------ > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San > Francisco, CA to explore cutting-edge tech and listen to tech luminaries > present their vision of the future. This family event has something for > everyone, including kids. Get more information and register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > > > > ------------------------------------------------------------------------------ > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San > Francisco, CA to explore cutting-edge tech and listen to tech luminaries > present their vision of the future. This family event has something for > everyone, including kids. Get more information and register today. > http://sdm.link/attshape > > > > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > ---------- ------------------------------------------------------------------------------ Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to explore cutting-edge tech and listen to tech luminaries present their vision of the future. This family event has something for everyone, including kids. Get more information and register today. http://sdm.link/attshape ---------- _______________________________________________ Cppcms-users mailing list Cpp...@li... https://lists.sourceforge.net/lists/listinfo/cppcms-users |
From: Marcel H. <ke...@co...> - 2016-07-04 21:45:46
|
maybe this helps (I have no idea of windows developing, why don't you give linux a try? ;) ) http://stackoverflow.com/questions/9522834/unresolved-symbol-errors-within-dll Regards Marcel Ps. next time try to output english errors and not the german ones :) On 07/04/2016 03:04 PM, ConKreter wrote: > Now I tried with the 64bit dev console and with NMAKE (all dependencies are also with 64bit). > http://puu.sh/pPTjN/4a44d08941.png > > Hope we can figure it out. I would love to work with my team with your library. > Kind Regards > Adrian Kreter > > -----Ursprüngliche Nachricht----- > Von: Artyom Beilis [mailto:art...@gm...] > Gesendet: Sonntag, 3. Juli 2016 20:42 > An: cpp...@li... > Betreff: Re: [Cppcms-users] Visual Studio 2015 > > 1st read the instructions _carefully_ > > http://cppcms.com/wikipp/en/page/cppcms_1x_build > http://cppcms.com/wikipp/en/page/notes_for_windows_users > > You are clearly trying to use MSVC project instead of nmake makefiles. > MSVC projects are not supported. > > If it still fails bring the full output of cmake and nmake runs + CMakeCache.txt file content in the build directory. > > Artyom Beilis > > On Sun, Jul 3, 2016 at 3:46 PM, ConKreter <in...@co...> wrote: >> Some symbols are not defined. Some symbols are defined twice. >> http://puu.sh/pOHTu/1ae250688e.png >> >> Main Problem seems to be booster. It is completely failing. >> Is someone using it on windows? >> Help would be awesome. If someone has a complete folder with all >> features and dependencies for MWSC 2015 I would happily buy it. >> >> -----Ursprüngliche Nachricht----- >> Von: Artyom Beilis [mailto:art...@gm...] >> Gesendet: Samstag, 2. Juli 2016 21:17 >> An: cpp...@li... >> Betreff: Re: [Cppcms-users] Visual Studio 2015 >> >> What problems do you have? What dependencies you fail to build. >> >> The bare minimal dependencies to build CppCMS with MSVC are: >> >> - cmake & Python2 (trivial to install) >> - zlib and pcre - widely used libraries. >> >> So what exactly fails for you? >> >> >> On Fri, Jul 1, 2016 at 2:12 AM, ConKreter <in...@co...> wrote: >>> Hello everyone, >>> >>> was someone able to make it work with MSVC 2015? >>> Could this person upload his folder with all dependencies? I cannot >>> make it work. >>> >>> If needed I would pay for it. >>> >>> Kind Regards >>> >>> Adrian Kreter >>> >>> >>> >>> >>> --------------------------------------------------------------------- >>> - >>> -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T >>> Park in San Francisco, CA to explore cutting-edge tech and listen to >>> tech luminaries present their vision of the future. This family event >>> has something for everyone, including kids. Get more information and >>> register today. >>> http://sdm.link/attshape >>> _______________________________________________ >>> Cppcms-users mailing list >>> Cpp...@li... >>> https://lists.sourceforge.net/lists/listinfo/cppcms-users >>> >> >> ---------------------------------------------------------------------- >> ------ >> -- >> Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in >> San Francisco, CA to explore cutting-edge tech and listen to tech >> luminaries present their vision of the future. This family event has >> something for everyone, including kids. Get more information and register today. >> http://sdm.link/attshape >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> >> >> ---------------------------------------------------------------------- >> -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T >> Park in San Francisco, CA to explore cutting-edge tech and listen to >> tech luminaries present their vision of the future. This family event >> has something for everyone, including kids. Get more information and >> register today. >> http://sdm.link/attshape >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users > > ------------------------------------------------------------------------------ > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to explore cutting-edge tech and listen to tech luminaries present their vision of the future. This family event has something for everyone, including kids. Get more information and register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > > > > ------------------------------------------------------------------------------ > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San > Francisco, CA to explore cutting-edge tech and listen to tech luminaries > present their vision of the future. This family event has something for > everyone, including kids. Get more information and register today. > http://sdm.link/attshape > > > > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > |
From: ConKreter <in...@co...> - 2016-07-04 13:04:17
|
Now I tried with the 64bit dev console and with NMAKE (all dependencies are also with 64bit). http://puu.sh/pPTjN/4a44d08941.png Hope we can figure it out. I would love to work with my team with your library. Kind Regards Adrian Kreter -----Ursprüngliche Nachricht----- Von: Artyom Beilis [mailto:art...@gm...] Gesendet: Sonntag, 3. Juli 2016 20:42 An: cpp...@li... Betreff: Re: [Cppcms-users] Visual Studio 2015 1st read the instructions _carefully_ http://cppcms.com/wikipp/en/page/cppcms_1x_build http://cppcms.com/wikipp/en/page/notes_for_windows_users You are clearly trying to use MSVC project instead of nmake makefiles. MSVC projects are not supported. If it still fails bring the full output of cmake and nmake runs + CMakeCache.txt file content in the build directory. Artyom Beilis On Sun, Jul 3, 2016 at 3:46 PM, ConKreter <in...@co...> wrote: > Some symbols are not defined. Some symbols are defined twice. > http://puu.sh/pOHTu/1ae250688e.png > > Main Problem seems to be booster. It is completely failing. > Is someone using it on windows? > Help would be awesome. If someone has a complete folder with all > features and dependencies for MWSC 2015 I would happily buy it. > > -----Ursprüngliche Nachricht----- > Von: Artyom Beilis [mailto:art...@gm...] > Gesendet: Samstag, 2. Juli 2016 21:17 > An: cpp...@li... > Betreff: Re: [Cppcms-users] Visual Studio 2015 > > What problems do you have? What dependencies you fail to build. > > The bare minimal dependencies to build CppCMS with MSVC are: > > - cmake & Python2 (trivial to install) > - zlib and pcre - widely used libraries. > > So what exactly fails for you? > > > On Fri, Jul 1, 2016 at 2:12 AM, ConKreter <in...@co...> wrote: >> Hello everyone, >> >> was someone able to make it work with MSVC 2015? >> Could this person upload his folder with all dependencies? I cannot >> make it work. >> >> If needed I would pay for it. >> >> Kind Regards >> >> Adrian Kreter >> >> >> >> >> --------------------------------------------------------------------- >> - >> -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T >> Park in San Francisco, CA to explore cutting-edge tech and listen to >> tech luminaries present their vision of the future. This family event >> has something for everyone, including kids. Get more information and >> register today. >> http://sdm.link/attshape >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> > > ---------------------------------------------------------------------- > ------ > -- > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in > San Francisco, CA to explore cutting-edge tech and listen to tech > luminaries present their vision of the future. This family event has > something for everyone, including kids. Get more information and register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > > > ---------------------------------------------------------------------- > -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T > Park in San Francisco, CA to explore cutting-edge tech and listen to > tech luminaries present their vision of the future. This family event > has something for everyone, including kids. Get more information and > register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users ------------------------------------------------------------------------------ Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to explore cutting-edge tech and listen to tech luminaries present their vision of the future. This family event has something for everyone, including kids. Get more information and register today. http://sdm.link/attshape _______________________________________________ Cppcms-users mailing list Cpp...@li... https://lists.sourceforge.net/lists/listinfo/cppcms-users |
From: Artyom B. <art...@gm...> - 2016-07-03 18:42:31
|
1st read the instructions _carefully_ http://cppcms.com/wikipp/en/page/cppcms_1x_build http://cppcms.com/wikipp/en/page/notes_for_windows_users You are clearly trying to use MSVC project instead of nmake makefiles. MSVC projects are not supported. If it still fails bring the full output of cmake and nmake runs + CMakeCache.txt file content in the build directory. Artyom Beilis On Sun, Jul 3, 2016 at 3:46 PM, ConKreter <in...@co...> wrote: > Some symbols are not defined. Some symbols are defined twice. > http://puu.sh/pOHTu/1ae250688e.png > > Main Problem seems to be booster. It is completely failing. > Is someone using it on windows? > Help would be awesome. If someone has a complete folder with all features > and dependencies for MWSC 2015 I would happily buy it. > > -----Ursprüngliche Nachricht----- > Von: Artyom Beilis [mailto:art...@gm...] > Gesendet: Samstag, 2. Juli 2016 21:17 > An: cpp...@li... > Betreff: Re: [Cppcms-users] Visual Studio 2015 > > What problems do you have? What dependencies you fail to build. > > The bare minimal dependencies to build CppCMS with MSVC are: > > - cmake & Python2 (trivial to install) > - zlib and pcre - widely used libraries. > > So what exactly fails for you? > > > On Fri, Jul 1, 2016 at 2:12 AM, ConKreter <in...@co...> wrote: >> Hello everyone, >> >> was someone able to make it work with MSVC 2015? >> Could this person upload his folder with all dependencies? I cannot >> make it work. >> >> If needed I would pay for it. >> >> Kind Regards >> >> Adrian Kreter >> >> >> >> >> ---------------------------------------------------------------------- >> -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T >> Park in San Francisco, CA to explore cutting-edge tech and listen to >> tech luminaries present their vision of the future. This family event >> has something for everyone, including kids. Get more information and >> register today. >> http://sdm.link/attshape >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> > > ---------------------------------------------------------------------------- > -- > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San > Francisco, CA to explore cutting-edge tech and listen to tech luminaries > present their vision of the future. This family event has something for > everyone, including kids. Get more information and register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > > > ------------------------------------------------------------------------------ > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San > Francisco, CA to explore cutting-edge tech and listen to tech luminaries > present their vision of the future. This family event has something for > everyone, including kids. Get more information and register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users |
From: ConKreter <in...@co...> - 2016-07-03 12:46:16
|
Some symbols are not defined. Some symbols are defined twice. http://puu.sh/pOHTu/1ae250688e.png Main Problem seems to be booster. It is completely failing. Is someone using it on windows? Help would be awesome. If someone has a complete folder with all features and dependencies for MWSC 2015 I would happily buy it. -----Ursprüngliche Nachricht----- Von: Artyom Beilis [mailto:art...@gm...] Gesendet: Samstag, 2. Juli 2016 21:17 An: cpp...@li... Betreff: Re: [Cppcms-users] Visual Studio 2015 What problems do you have? What dependencies you fail to build. The bare minimal dependencies to build CppCMS with MSVC are: - cmake & Python2 (trivial to install) - zlib and pcre - widely used libraries. So what exactly fails for you? On Fri, Jul 1, 2016 at 2:12 AM, ConKreter <in...@co...> wrote: > Hello everyone, > > was someone able to make it work with MSVC 2015? > Could this person upload his folder with all dependencies? I cannot > make it work. > > If needed I would pay for it. > > Kind Regards > > Adrian Kreter > > > > > ---------------------------------------------------------------------- > -------- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T > Park in San Francisco, CA to explore cutting-edge tech and listen to > tech luminaries present their vision of the future. This family event > has something for everyone, including kids. Get more information and > register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > ---------------------------------------------------------------------------- -- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to explore cutting-edge tech and listen to tech luminaries present their vision of the future. This family event has something for everyone, including kids. Get more information and register today. http://sdm.link/attshape _______________________________________________ Cppcms-users mailing list Cpp...@li... https://lists.sourceforge.net/lists/listinfo/cppcms-users |
From: Artyom B. <art...@gm...> - 2016-07-02 19:17:31
|
What problems do you have? What dependencies you fail to build. The bare minimal dependencies to build CppCMS with MSVC are: - cmake & Python2 (trivial to install) - zlib and pcre - widely used libraries. So what exactly fails for you? On Fri, Jul 1, 2016 at 2:12 AM, ConKreter <in...@co...> wrote: > Hello everyone, > > was someone able to make it work with MSVC 2015? > Could this person upload his folder with all dependencies? I cannot make it > work. > > If needed I would pay for it. > > Kind Regards > > Adrian Kreter > > > > > ------------------------------------------------------------------------------ > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San > Francisco, CA to explore cutting-edge tech and listen to tech luminaries > present their vision of the future. This family event has something for > everyone, including kids. Get more information and register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > |
From: ConKreter <in...@co...> - 2016-06-30 23:51:57
|
Hello everyone, was someone able to make it work with MSVC 2015? Could this person upload his folder with all dependencies? I cannot make it work. If needed I would pay for it. Kind Regards Adrian Kreter |
From: mawan s. <ma...@gm...> - 2016-06-27 13:25:55
|
sorry Vinicius, this is an exqmple : dispatcher().assign(".*",&dashboard::prepare,this,0); what is the 0 in the last parameter mean? On Jun 27, 2016 7:40 PM, "Vinicius Pavanelli" <ds...@ha...> wrote: > In regular expression, 0 is used to match all the string, so 0 will pass > the entire url the dispatch caught. > > On 27-06-2016 07:58, mawan sugiyanto wrote: > > sometimes we found 0 parameters ( message board example), what is it mean > (espescially for 0 parameters, not 1)? > On Jun 27, 2016 5:40 PM, "Vinicius Pavanelli" <ds...@ha...> wrote: > >> It's regular expressions. >> >> When you say "/number/(\\d+)" you mean to check for strings starting with >> /number/ and capture all numbers following it "(\\d+)", the 1 after is to >> pass this parameter. >> >> When you say ".*" it means every strings, as "." match every char and * >> means any number of it, the 0 means it will not pass arguments as it don't >> capture nothing. >> >> If you are still lost, look for a tutorial on regexp or regular >> expression on the net. >> >> The pointer is the &hello::number part, a pointer to a function, and you >> must pass this as it's a function of a class. >> >> Hope this helps, >> Vinicius >> >> On 26-06-2016 06:57, mawan sugiyanto wrote: >> >> Dear All >> >> what is different between : >> some time we meet example : >> >> dispatcher().assign("/number/(\\d+)",&hello::number,this,1); >> >> and >> >> dispatcher().assign(".*",&dashboard::prepare,this,0); >> >> is 0 or 1 is pointer only or we have too fill with parameters start from >> 1? >> >> thankyou >> >> >> mawan >> >> >> >> ------------------------------------------------------------------------------ >> Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San >> Francisco, CA to explore cutting-edge tech and listen to tech luminaries >> present their vision of the future. This family event has something for >> everyone, including kids. Get more information and register today.http://sdm.link/attshape <https://u3143608.ct.sendgrid.net/wf/click?upn=-2F8o2SEPnO8o0gkz01Z4rS6LpAafGvH6zWx74mJXBontYZqpTk7c8E2KG7ravlyyVYH3TuuKK5dFAVyOlYqS4hW2HFBz3AAFifBuwgzUHDVyELK1Xw-2F93JGIU7wH1UdVUv33Bu7SdpJ2aXnRRPnNSCl2VaU0fL5wDbzskxAMx9A6pnlsMcyBecAS-2Fr5tVzB0YNT8jlyHPcdYJpHduiWWoMIlm-2FMcr58mKTCISw6Jb4uWB4rHne-2Bjp-2F0zfP9VD9deSkqJA1r-2B5oLPEg-2Bmr9-2B6bdXD9OIEQtuMOm-2FL3nyAyWooNMUHq-2FZGSvQqj1lQURBoncAFQiJrCgEAEgZLnwwb8VN5JtwP8yNip9dQSyly3pj1dbKgcoOC5SD7VOlWejvP9Cy6nBh-2F5oE-2BMif-2Ff3XiD9YilZC7pOlju0XLQ6t6WwlRCjUUH60MrWq-2F-2BJU-2BFW94Yc8gLB-2FwrHGUgjWsNZaqC5JUcMATaZdX-2FUEClYxdXy50-3D_QqpctyXzj3McV7nyWd3l9m7lCO1pRhWOf-2FT5RqYYs597RjT9wvGhEJXv4m7jZD-2BEsCVALAqO9eiRrVBsCD3Xzm-2BdAmPx-2FNYVgoqsPR-2BVT2LHdyAXgQOfqFO0wRKmrFOEFBmTMlaJVaaU3xpV0eWVERZvGnRESEf4i-2BatyqU1xKG7jEc2b7-2Bdo6NTTR-2FHshZDcXSnxIw5arARFoM7ilFabH6ZO2UEKnWOK4IpDTbcplM-3D> >> >> >> >> _______________________________________________ >> Cppcms-users mailing lis...@li...https://lists.sourceforge.net/lists/listinfo/cppcms-users <https://u3143608.ct.sendgrid.net/wf/click?upn=-2F8o2SEPnO8o0gkz01Z4rS6LpAafGvH6zWx74mJXBontYZqpTk7c8E2KG7ravlyyVGB-2B-2F-2FqCV-2FlR-2BleyFPI37rpd6XNyLi-2BmkmAaGzAPb38dRiblFYM4jbJyKwpR4cU6Msu26wON6Nv0BCu3dIq55GQ5IbfxxSqFZumas-2BJ54lS5V0nVezYIxtMAJW4Q9VvcWWDRWtkfKSzgfzWVW3TlAHZ2WnekPRIxrdmTshBzIOu3D9BhJBDwR9nsjahsN1dtstT4dAenq8O4FdLJsiOaNVcg3ibHhw162JOvHIj2KdtbAlJupZxF06iMM2waP4xK6zNSShGFCMTb16c5e9ue4-2B1WnGP-2B2fv7FsN5TMwD0-2FLWRwblZoaAl0aDE3BYeeyS5Z2-2BFUkfp4IqQYwGe619rwgOqHTrcCHL9fuEgajireWDyKU0IW02xA-2FAzYodfy87DYHrnTILNiJP2pD9LnClghYP7dPiMU8XVovKWMN8iiOAnt8ctm06RbMSH6ZegWkLtSJ2RP4r1pFdvo-2BBZp-2F9scWPTIcja5c-2FO9JXALpGDs47gulKE2YOzJPt8uvlgY8zS_QqpctyXzj3McV7nyWd3l9m7lCO1pRhWOf-2FT5RqYYs597RjT9wvGhEJXv4m7jZD-2BEsCVALAqO9eiRrVBsCD3Xzr7dAnZnRQWFH04pdabkhIufq1IvfIjciBhlU6q6MfNfkF0-2FM2s59KBi1tzjqSH3Tb-2Fu-2BBcV-2BgPDae3m7rKl2CEr-2BqNy3QC1lvju6BNHlvgw4oB-2Bhkvcuvx9ZdbCR7fGyBpTe1CBMhdENdOFLhD-2Blnk-3D> >> >> >> >> >> ------------------------------------------------------------------------------ >> Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San >> Francisco, CA to explore cutting-edge tech and listen to tech luminaries >> present their vision of the future. This family event has something for >> everyone, including kids. Get more information and register today. >> http://sdm.link/attshape >> <https://u3143608.ct.sendgrid.net/wf/click?upn=XKgXTBnynYc51QNK-2FVhLWGHEVgnlGmLptX1YaZ-2FDzWM-3D_QqpctyXzj3McV7nyWd3l9m7lCO1pRhWOf-2FT5RqYYs597RjT9wvGhEJXv4m7jZD-2BEsCVALAqO9eiRrVBsCD3XzsWf2PRuGNSSNUPe-2B4nZw7Sx7eRMkVwoYr4lFFdHDVY2WqqHQKPDhkPrMjUmeSF73E8qX7RsidVR8W1A72pXXTmsoxH6hqzkz2uftNHnlmRjkLu5G5xg9UujO605tZ9x7NKe3GdN9ZF0y68QFERmbFA-3D> >> _______________________________________________ >> Cppcms-users mailing list >> Cpp...@li... >> https://lists.sourceforge.net/lists/listinfo/cppcms-users >> <https://u3143608.ct.sendgrid.net/wf/click?upn=-2F8o2SEPnO8o0gkz01Z4rS-2BVz-2BkzajgLQzAoqRKlFQZMZV23PrrGQX1Y-2FnO6KyV7Cg6qnA3jfnwVVC-2BvfFaL4kRlo5qTOuSuNLjAJ4aI-2BCTA-3D_QqpctyXzj3McV7nyWd3l9m7lCO1pRhWOf-2FT5RqYYs597RjT9wvGhEJXv4m7jZD-2BEsCVALAqO9eiRrVBsCD3XzvoFziiCO95PqGSfTlW0D9r9Cl6Tastb7icdPmoPUoERP2lF5wWlsPeK8PdEIU0dn04XNsgRGyRlw-2FUK5IWLQELhF6VEJ6Z0FgEYvmMltYF5LkoUsnF4o7YbwOWzK83E9ATktrlXNeHF2sd-2BTGmrAd8-3D> >> >> > > ------------------------------------------------------------------------------ > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San > Francisco, CA to explore cutting-edge tech and listen to tech luminaries > present their vision of the future. This family event has something for > everyone, including kids. Get more information and register today.http://sdm.link/attshape <https://u3143608.ct.sendgrid.net/wf/click?upn=XKgXTBnynYc51QNK-2FVhLWGHEVgnlGmLptX1YaZ-2FDzWM-3D_QqpctyXzj3McV7nyWd3l9m7lCO1pRhWOf-2FT5RqYYs597RjT9wvGhEJXv4m7jZD-2BEsCVALAqO9eiRrVBsCD3XzkXjFti-2FYTNBprOmoQzdEP1ScuNX6IbkLbvvgr74tD2AhCK0AfRptgpaiJNb1Mj3dlWqNaQJP4sgTrqe588xsKrp8ZLWtBeTxNDHwad1mQN-2BPZLHYkVoIvBH9s1ArqCPvzSuB-2FJwfLcvA-2BDhmqKUh-2BI-3D> > > > > _______________________________________________ > Cppcms-users mailing lis...@li...https://lists.sourceforge.net/lists/listinfo/cppcms-users <https://u3143608.ct.sendgrid.net/wf/click?upn=-2F8o2SEPnO8o0gkz01Z4rS-2BVz-2BkzajgLQzAoqRKlFQZMZV23PrrGQX1Y-2FnO6KyV7Cg6qnA3jfnwVVC-2BvfFaL4kRlo5qTOuSuNLjAJ4aI-2BCTA-3D_QqpctyXzj3McV7nyWd3l9m7lCO1pRhWOf-2FT5RqYYs597RjT9wvGhEJXv4m7jZD-2BEsCVALAqO9eiRrVBsCD3XzvvM0E3rfDgc0CM3bBIiFq4IcxtPuBi42LjkaAH9hNqSfIIj-2BQiS5C1uchxareXfnnqcsWZni-2BFCugFpwYglDep3nCLXSXTM1DHLahu78tBiQt6TztV3Qy-2FmwC54bgi99uxB1v-2BsW3nZyk52H4hkcOI-3D> > > > > > ------------------------------------------------------------------------------ > Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San > Francisco, CA to explore cutting-edge tech and listen to tech luminaries > present their vision of the future. This family event has something for > everyone, including kids. Get more information and register today. > http://sdm.link/attshape > _______________________________________________ > Cppcms-users mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppcms-users > > |