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 wOOdy-Soft 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 OzWolf

  1. OzWolf

    JAXB WebServiceException - Connection Timeout

    That's the thing, the connection problems occur when I deploy the website with the WS client to the same server as the web service itself. If I run the WS client locally (using Tomcat installed on my desktop) or when our Delphi developers use the WS client in their own app, there isn't an issue.
  2. OzWolf

    JAXB WebServiceException - Connection Timeout

    Hi everybody, I have run into a very perplexing problem with a web service I am developing. The web service has been successfully deployed to the testing server. It can be successfully accessed and utilised by both our Delphi developers and myself as the Java web developer. The problem I...
  3. OzWolf

    Segmentation Fault On Number Increment

    I've fixed the issue. Obviously the ++j was the last straw in a memory issue elsewhere. After a re-coding of the program, the last function I wrote out works without a hitch. And that if statement was supposed to be: if (dir_name[i-1] != '/'){ ++j; } Primary reason for the last bit is...
  4. OzWolf

    Segmentation Fault On Number Increment

    Thanks for the tips guys. I changed the function to: int dir_parts(char *dir_name){ int i; int j; char c[2]; for (i = j = 0; dir_name[i]; ++i) if (dir_name[i] == '/') ++j; if (dir_name[i] != '/'){ ++j; } return(j); } But I still get...
  5. OzWolf

    Segmentation Fault On Number Increment

    Hey folks, I'll be the first to admit that the last time I did any serious C programming was over a decade ago at uni. Up until today, my work with C has been basic maintenance and minor code changes. Anyway, I'm running into a segmentation fault that just has me reviving my days in the Navy...
  6. OzWolf

    Charts & Forumla Field - Different Grouping Need to Report

    Yeah, but the sum of averages doesn't give you an overall average. For example, say for a specific bill period you have: Prod Type A Avg = 300/10 = $30 Prod Type B Avg = 200/20 = $10 That gives $40 as a sum when the reality is 500/30 = $16.66 I also need to put a grouping in the formula...
  7. OzWolf

    Charts & Forumla Field - Different Grouping Need to Report

    Actually, what they wanted was something along the lines of: SUM({table.chg},{table.bill_period}) / SUM({table.qty},{table.bill_period}) I tried all types of ways to fix it (including an automatic cross-tab). None worked. Thankfully, I've just finished convincing them that the graph provided...
  8. OzWolf

    Charts & Forumla Field - Different Grouping Need to Report

    This may be impossible to do, but someone might have an idea. We currently have a sub-report with a manual cross-tab with the following groupings: - Product Group - Product Type - Bill Period A business need has arisen for a chart in the same sub-report that shows the total charge...
  9. OzWolf

    CE SDK's - Java vs. CSP

    A little old but I thought I'd add my observations. I originally built a complete custom remake of ePortfolio using the CE COM SDK (with ASP). Within the last 6 months, I have undertaken Java training (a must) and have begun building CE tools using the Java SDK. So far, Java wins hands down...
  10. OzWolf

    SQL*Loader Raising Non-Numeric Error (when it shouldn't).

    Hmmm...it appears the error was the DIRECT=true flag set for the SQL*Loader. I removed that and the error disappeared. Provides a fix, doesn't provide a reason though.
  11. OzWolf

    SQL*Loader Raising Non-Numeric Error (when it shouldn't).

    I need help on an issue I have encountered with SQL*Loader. It spits out the following error: Record 25976: Rejected - Error on table TASINET_INBOUND_TEMP. ORA-01858: a non-numeric character was found where a numeric was expected After much investigation with the record, I discovered the...
  12. OzWolf

    Retrieving User's E-mail Address

    Thanks KingFisher...worked a treat. And sorry, I am using CE10. For mdwyer: In CE9, you can store an e-mail address for a user but you need to build a custom interface to do so and then use the setProfileString and getProfileString methods for the User object. This way, you can define custom...
  13. OzWolf

    Retrieving User's E-mail Address

    Ok, the need to conquer continuing customisation problems continues. This time, I am trying to retrieve the e-mail address of a particular user account. I can get the username, full name and description without a problem but the e-mail address continues to elude me. I haven't been able to...
  14. OzWolf

    Use Token to Access CMC

    Thanks for the prod Kingfisher. Considering the fact the directory was all sitting there and how I've used other code from the product to guide me, it should have been obvious. Anyway, it didn't provide an exact solution because the token used there wouldn't work, however, I have found a...
  15. OzWolf

    Use Token to Access CMC

    Thanks, but the custom interface is a complete rebuild of ePortfolio with the look and feel for our corporate image so it uses the CreateLogonToken method (as well as a 1001 other ways of making the CMS dance our tune) however there is no documentation on passing that token to the CMC as a...

Part and Inventory Search

Back
Top