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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by orlyotero

  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: _...

Part and Inventory Search

Back
Top