|
When i try to access my wcf service function from asp.net mvc4 application it give me
error "The remote server returned an error: (403) Forbidden". Please solve my problem.
Please check link:- http://demo.goigi.com/lingaru
|
|
|
|
|
This means that the server is denying you access. This is going to be because you have been authorized but don't have the permissions to do the relevant operation. You need to be given the appropriate permissions -and that's not something we can help you with.
|
|
|
|
|
I am searching for a coder who has previous experience in developing code for video conferencing to be used for virtual classroom.
|
|
|
|
|
I wish you look with that. Have you tried recruitment agencies or something like RentACoder?
|
|
|
|
|
+5 - I was about to post the same thing an hour ago but desisted
Geek code v 3.12 {
GCS d--- s-/++ a- C++++ U+++ P- L- E-- W++ N++ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t++ 5? X R++ tv-- b+ DI+++ D++ G e++>+++ h--- r++>+++ y+++*
Weapons extension: ma- k++ F+2 X
}
If you think 'goto' is evil, try writing an Assembly program without JMP. -- TNCaver
|
|
|
|
|
Hello
I'm in the process of starting up the development of a new software product.
I'm still in the early phase - just drawing the basic solution design, identifying the components need (like SMS service, workflow engine, forms services, QR Code generators etc.) I'm really looking for some advice on what software platform/cloud/ or whatever product i should be looking getting a good start and not building everything from the ground up but on the other hand not being too depended on or perhaps more correct limited to what some standard solution/ platform would offer.
Hope to get some thoughts and directions from you guys.
7/7
Lars
|
|
|
|
|
I created setup using inno setup as well as using QSetup (and other install builder applications).
All setups were created using Admin privileges but the setups that were created using inno setup do not have a windows security shield setup icon. However this security shield mark appeared automatically on icons of all other setups.
Due to this issue, installer that was created using inno setup will not install on a number of Windows vista Machines when downloaded from website.
In Windows Vista machines, when I double click on such installer, nothing happens.
I used:
PrivilegesRequired=admin
Please help!
see the attachment image:
http://s12.postimg.org/oqpkl5djh/inno_setup_issue_windows_security_shield_does.png[^]
|
|
|
|
|
Not sure what could be wrong without looking at the script... I've used InnoSetup before on Windows Vista and 7 machines and everything worked as expected.
|
|
|
|
|
I had created a application in .Net to view the crystal report.In that when i try to open the the report it shows the following error.
UFL u2lcapw.dll that implements this function is missing.
pwformatdate({OEORDH.ORDDATE});
UFL u2lcapw.dll.dll that implements this function is missing.
But that .dll is in windows folder and crystal report folder.Please give me suggestion to solve it.
|
|
|
|
|
Hi Experts and my dear friend please guide me for following subject,
Hi m Omkar Chaudhari and working on my own project and i found some difficulties. Here i want to add news, articles and Event module but i cant able to solve this issue or i don't have any experience how to think on it, so please help me.
|
|
|
|
|
What are you talking about?
There are only 10 types of people in the world, those who understand binary and those who don't.
|
|
|
|
|
Where is the best place on CodeProject to ask questions about Notebook computers ?
I can no longer understand the marketing behind these things. The ads for things make no sense to me at all.
Is there a place here where I can learn to read these ads and understand what they are selling and what makes one different from another ?
|
|
|
|
|
|
Anybody else agree ? Disagree ?
I'll try there in a few hours.
I just want to learn how to read the ads.
|
|
|
|
|
Sounds like the right forum to me.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Okay, but I am getting slightly apprehensive about being the single member who has initiated 6 of the nine most recent threads in that group over the past two months.
I think this will make it 7 out of 10
|
|
|
|
|
happens... don't worry about it, if you never ask you'll never know 
|
|
|
|
|
Hi
not sure where to post this, or even if CP is the right place, but hope it's OK here...
so I've burnt a CD with a single HTML file in the root folder called home.html
When inserted in the drive (D: ) a popup windows appears with options to
a) Install or run programs from your media
Run home.html
b) Open folder to view files
if I click b) I can then double-click home.html adn it will open fine in my default browser. But if I click on a's option to "Run home.html" i just get an error message saying
"D:\ is not a valid WIn32 application"
As this CD is one I want to diostribute to various people I can't ask them to make any changes to their computers - is there some other solution to the way I burn the CD - ie the files I burn to it - that can allow them to open the .htrml files whichever way they choose?
|
|
|
|
|
You can do this using the ShelExec[^] utility.
|
|
|
|
|
Thanks - I did have my own autorun.inf file, but actually I think I had the wrong command in it! Just a simple
[autorun]
shellexecute=home.html
seems ot do it.
|
|
|
|
|
This should work too.
If not, autorun may be disabled on your system.
|
|
|
|
|
In programming languages like Java and C# where you can only inherit from one class why should we inherit from one class? From my point would produce brittle inflexible code. It be better for safety to ban inheritance of implementation and just provide inheritance of interface. In these language there is nothing that stops you from providing one interface and making the common implementation depend on helper class
|
|
|
|
|
Don't you see any value on the fact that you can implement common logic for several classes to a single class and inherit from that?
Consider the traditional example, Animal. Animal is the base class providing lots of functionality such as name, age, parents, walk(), stop(), sleep() and so on. Now Cat, Dog, and Horse are derived classes with a few minor tweaks specific to that kind of animal.
By using inheritance you have all the functionality on each of the animals and you don't need to know where it came from. If you'd have a helper class you'd need to know what to call and so on.
To go beyond that, using inheritance you have the possibility to override, implement required functionality, hide existing logic etc.
|
|
|
|
|
That does not disprove my point the base class Animal under single inheritance would be one or more helper classes and provide an Animal interface. This proves more controlled code reuse. I could point out that there might be a performance increase in inheritance of implementation but is a moot point. Another example is the class bird where you have a method fly this would be incorrect for flightless bird like ostriches, emus, kiwis and penguins. With single inheritance there is no way to disable fly for flightless birds if fly is part on the base class.
|
|
|
|
|
I do understand what you're after but I still believe inheritance to be more powerful.
vickoza wrote: With single inheritance there is no way to disable fly for flightless birds if fly is part on the base class. Oh but there is. You'd use new Modifier[^]
|
|
|
|