Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. orlyotero

    struts alternative to ...

    Hello mythaeus, I know struts has role-based authorization, actually I'm using it, but my problem comes when my application generates .jsp files as a result of a xml transformation. In order to make them work as a normal struts application, the transformation will need to generate .class code...
  2. orlyotero

    struts alternative to ...

    Hello, For those dealing with a similar situation: a servlet filter could be used, struts doesn't includes but role based authorization, when needed to add .jsp files dinamically a pattern action and filter could be used. Regards, OO
  3. orlyotero

    Resin vs Tomcat (jstl+struts)

    Finally I was answered, For those who have dealed with the same situation, the solution is: ${requestScope['issueForm'].map.idIssue} Note the .map attribute added to the sentence, I don't really know why resin was working with and without it, but now it's working in both containers. Thanks...
  4. orlyotero

    Resin vs Tomcat (jstl+struts)

    Hello all, these simple line is driving me crazy: <c:set var="idIssue" value="${requestScope['issueForm'].idIssue}" scope="page"/> I'm using struts 1.2.4 and jstl 1.0, the above code woks fine while using resin 2.1.9 locally in my pc. when I uploaded the appto my hosting provider it didnt...
  5. orlyotero

    struts alternative to ...

    Hello folks, I posted this thread in java sun, and still waiting "any" response(actually still waiting any response for any of my questions), but, anyway: During my free time I'm in the process of re-writing a web app I coded in the near past. It's an online magazine builder, basically, this...
  6. orlyotero

    how to start including a new container property?

    I wish I provide you with relevant data but remember that somebody is hosting the site not my local PC and somebody's tomcat is giving me the above error, I can't browse the files to find the log files since the file Browser they offered me is a .jsp application, since my tomcat doesn't startup...
  7. orlyotero

    how to start including a new container property?

    I have tried first: CATALINA_OPTS="$CATALINA_OPTS "-Dezine.properties=/usr/local/shared/tomcat/orly_otero/webapps/ezine/WEB-INF/ezine.properties and then CATALINA_OPTS="$CATALINA_OPTS -Dezine.properties=/usr/local/shared/tomcat/orly_otero/webapps/ezine/WEB-INF/ezine.properties" in both cases...
  8. orlyotero

    how to start including a new container property?

    Hi guys, I need to start tomcat initiating a system property that has app properties in it, kind of: -DpropName=propValue I have modified catalina.sh and startup.sh and I could not accomplish this GOAL. Regards, OO
  9. orlyotero

    BIG problem while implementing pagination in back-end

    I came up with: Create table #T( this_pk int identity(1,1), other_pk sql_variant, /*not all PKs are of the same type*/ ) go INSERT INTO #T (other_pk) SELECT TOP 25250 CAST(rc_AdNo AS SQL_VARIANT) FROM tblRecorder ORDER BY rc_ListName, rc_AdNo ASC SELECT */*or specific...
  10. orlyotero

    BIG problem while implementing pagination in back-end

    Northwind is not installed in the db server, I have installed msde local in my pc and it is not there too
  11. orlyotero

    BIG problem while implementing pagination in back-end

    wow, fractions of sec. very very very nice amazing thanks a lot now I have to adapt it to my needs which not always the criteria filter and PK are going to be varchar and int by the way, this is a newbie question, does sqlserver support a kind of variant or void data type, I mean a data...
  12. orlyotero

    BIG problem while implementing pagination in back-end

    but I don't understand what: -- find unique values for 1000th row according to ORDER BY select top 1000 @rc_AdNo = rc_AdNo, @rc_ListName = rc_ListName from tblRecorder order by rc_ListName, rc_AdNo will produce, I have used that kind of assigment when I'm sure of retrieving just one row, in...
  13. orlyotero

    BIG problem while implementing pagination in back-end

    vongrunt, I didn't understand that one, rc_ListName could be found many times in the table, the PK of tblRecorder is rc_AdNo, the other fields could be found more that once, phones could be repeated, Sale amounts too, Advertisement names too, the only field that is going to be unique is rc_AdNo...
  14. orlyotero

    BIG problem while implementing pagination in back-end

    I'm not going to need R.*, now the query is: SELECT R.rc_AdNo, R.rc_ListPhone, R.rc_SaleAmount, PB.pb_PubType, PB.pb_PubName, PR.pr_Desc FROM tblRecorder R LEFT OUTER JOIN tblPublication PB ON R.rc_Directory=PB.pb_RecNo LEFT OUTER JOIN tblProducts PR ON R.rc_Product=PR.pr_ProdNo WHERE...
  15. orlyotero

    BIG problem while implementing pagination in back-end

    OK, PK rc_AdNo field from tblRecorder, and the ORDER BY cluase could contain: _ rc_ListName(String) from tblRecorder, rc_Directory is a field in tblRecorder that references a directory id in tblPublications, and the user could choose to order the Publication name, that left us as follow: _...
  16. orlyotero

    BIG problem while implementing pagination in back-end

    vongrunt, actually we have a production app and a development-testing app. They use different databases with the same structure. I'm almost sure that at this moment there are two users at most accessing the testing app(it's lunch time), and I'm one of them, and just searching, so I don't think...
  17. orlyotero

    BIG problem while implementing pagination in back-end

    TJR If I remember well, I think I tried the PageSize and AbsoultePage technique as the article shows, it doesn;t work well to me and I didn't know why, and thereafter I decided to use the SP version. I'm using OLEDB Provider for ODBC, I don't know if this had some influence in the fact that...
  18. orlyotero

    BIG problem while implementing pagination in back-end

    I'm going to try the textbox option, anyway this webapp is the company's Intranet application, not an Internet public app, and our Intranet is very fast with theorically 80 users, at most 30 in practice. About the other point, in that particular query, the left joins are not necessary but If...
  19. orlyotero

    BIG problem while implementing pagination in back-end

    Thanks for all replays guys, The example http://www.dotnetjunkies.com/Tutorial/EA868776-D71E-448A-BC23-B64B871F967F.dcik explicitly creates a temporal table, let me explain a litle bit more about the code: I coded some SPs that retrieve lists or sets or collections from different tables, say...
  20. orlyotero

    BIG problem while implementing pagination in back-end

    Thanks, Catadmin, the problem doesn't has to be with ASP(yet), I'm runing the SP from query analyzer, which I think doesn't time out. query analyzer spent 2 minutes executing the above query jbenson001, I really don't know how nested select work internally, I don't know if nested select create...

Part and Inventory Search

Back
Top