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.
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...
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...
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...
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...
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...
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...
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...
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...
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.
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.