In c#, the out keyword causes parameters to be passed by reference from the callee to the caller.
0
votes
1answer
10 views
504 Gateway Time-out
I am getting this "nginx 504 gateway timeout" when accessing my website, even when low traffic, server is 1000mbit, 36GB RAM and 2(Intel Xeon 2556). All traffic going to my site comes through a proxy ...
0
votes
1answer
16 views
Unable to create JBoss Seam EntityManager
This is so frustrating, here is the error log for the past 3 days. I'm not really sure what to do. Please help me. The source is included below.
2013-05-20 10:52:44,197 ERROR [STDERR] ...
0
votes
2answers
26 views
Google Auth2.0 log out
I'm currently trying to make a site where the user can log in with his google+ account. Most of it is working. I get them to grant access to my website. They can log in and I get their name and user ...
0
votes
0answers
17 views
Wordpress 3.5.1 load content outside wordpress
Im trying to load wordpress in a subdomain specifically trying to load wp menus, but when i try to call to wp-load i receive "Unable to establish database connection"
I'm trying to call to wp-load ...
1
vote
1answer
53 views
Return multiple values from a class to method
I have a method passing a string to a class. For testing reasons I have used a button for now.
I have searched in the forum for similar questions but they refer to php and other situation that I am ...
-1
votes
0answers
41 views
mounting NFS on LINUX RPC: timed out message [closed]
I'm trying to mount a NFS-share between two LINUX kernel, but when I write in the client
mount -o nolock,tcp,nfsvers=3 192.168.0.2:/home/xavier/Develop /mnt/develop
I get
mount: RPC: Timed out
...
1
vote
1answer
59 views
java.net.socketException:operation time out when running app on real device
this code works fine on emulator, but on real device it gives
java.net.SocketException:the operation timed out
ive got a php script running on my xampp server.
package com.example.new1;
...
4
votes
4answers
54 views
Does C# support inout parameters?
In C#, I am using a StreamReader to read a file, line per line. I am also keeping the current line's number in an int, for reports of possible error messages.
Reading each line goes along with some ...
-1
votes
3answers
43 views
Locked out of Jenkins [closed]
I enabled jenkins security thinking it would prompt me to create an account. I tried deleting and editing my config.xml file in c:/program files/jenkins but i'm not sure how to restart jenkins without ...
0
votes
0answers
17 views
Static IntPtr access into and out of anonymous method
A (global) static IntPtr var is passed to a p/invoke DLL interop call which places a valid handle to a USB device in regular code into that var.
private static IntPtr commHandle = (IntPtr)0;
When ...
0
votes
1answer
52 views
Java socket timed out error
We made a multiplayer game as a facebook application which uses php ve mysql connections thru java extension frequently to update logs and stuff. We can see CPU usage, memory, load, I/O values, Java ...
1
vote
2answers
64 views
Call method from another class with out parameter using BackgroundWorker
In my backgroundworker, it need to call methods from another class come with out parameter.
[Class 1]
public partial Class1 : Form
{
private void bw_DoWork(object sender, ...
0
votes
2answers
60 views
C# WCF returning parameters with/without REF/OUT
Following is a SIMPLIFIED VERSION of my WCF service code. This code works fine and returns me the data.
My question is this only works if I pass the customers object either by ref or by out. If I ...
-1
votes
3answers
41 views
How can i “limit” a text inside a <p>?
i have a mail template newsletter here:
http://www.newsletter.vendopor.com/m29-04-13/index2.html
But at the end, have a paragraph that contains that text:
Por favor, envía este correo a las personas ...
5
votes
3answers
146 views
C# dictionary TryGetValue with int values, how to avoid double lookup
When doing something like:
int value;
if (dict.TryGetValue(key, out value))
{
if (condition)
{
//value = 0; this copies by value so it doesn't change the existing value
...
0
votes
1answer
44 views
Input data from one form to another(external page)
I created a textfield on my index page and I need to input the value of this textfield in the Paypal web site. So when the user type £25 and click donate the Paypal website opens and the value ...
4
votes
1answer
78 views
How do I make a streaming LINQ expression that delivers the filtered out items as well as the filtered items?
I am transforming an Excel spreadsheet into a list of "Elements" (this is a domain term). During this transformation, I need to skip the header rows and throw out malformed rows that cannot be ...
0
votes
1answer
32 views
ArrayIndexOutOfBoundsException : 6
public boolean horizontal(Populate a, int[][][] ar, int row, int col, int dep)
{
ar = new int[6][6][6];
a.pop(ar);
for(dep=0;dep<6;dep++)
{
...
0
votes
0answers
15 views
setConnectTimeout causes hang?
hi im trying to test a proxy but if i set setConnectTimeout over 1500 it causes to programe to hang it just dies nothing gets printed my processor and memery arint doing much it just dies does anyone ...
1
vote
1answer
119 views
Delphi - deferring assignment to an out parameter
In Delphi, suppose I have a method with a (much simplified) signature like this:
procedure abc( const prop1:string; const arg1:TValue; const prop2:string;
out arg2:TValue );
I'm building a ...
0
votes
2answers
69 views
What is the purpose of the “out” keyword in this “if” branch (used in OAuth “Starter Site” template for WebMatrix)? [duplicate]
My question really just centers around one thing, mainly. What does the out keyword do, in this example branch, exactly?
if (!OAuthWebSecurity.TryDeserializeProviderUserId(loginData, out provider, ...
0
votes
0answers
20 views
Use of unassigned out variable though i assign it a default value
using System;
namespace Examples
{
public class HelloWorld
{
public static void Main(string[] args)
{
int y=5;
A(out y);
}
public static void A(out int x)
...
3
votes
1answer
58 views
ParameterInfo properties, attributes and out ref parameters of the methods
Well, I'm confused by the properties of the ParameterInfo class.
Unfortunately documentation is not very clear: examples show how to build methods but don't show how these methods look in C#.
Cane ...
3
votes
1answer
187 views
Tuples vs. custom struct for async version of a method with ref/out parameter
Consider a C# API with method that has out or ref parameter, e.g.:
Person FindPerson(string name, out int searchTime);
Let's not pay attention to the fact that out and ref parameters are usually a ...
0
votes
2answers
66 views
Windows Server 2012 System.IndexOutOfRangeException
I have wrote a service and it works just fine on my computer but when I move it onto the server it is supposed to run on, it is spitting out System.IndexOutOfRangeException whenever it goes to ...
1
vote
3answers
86 views
C# out keyword meaning and does it have an equivalent in PHP? [duplicate]
I'm trying to convert this C# method into PHP. What does the out in the second parameter mean?
public static bool Foo(string name, out string key)
0
votes
0answers
52 views
VB.NET File Binder out of memory Exeption
OK guys, I got this code from a tutorial in YouTube about a file binder which works fine, but has a problem with big files, it will throw an out of memory exception.
My question is how would I read ...
1
vote
3answers
137 views
Java Arry Index Out of Bound Exception
I have been working on this basic java program when I need to store 5 user entered values into an array, send it to a method, and find and display the lowest value.
The program is simple enough, and ...
0
votes
2answers
62 views
How to circumvent unused out parameters values?
I am using ConcurrentDictionary, and I need to remove elements using TryRemove.
The implementation of TryRemove requires an out parameter that returns the object that will be removed.
Body dummy;
...
0
votes
0answers
9 views
Is there a way for a Jbutton to read a JLabel's visibility and act if it its false/true?
Can I make a JButton that finds out if a JLabel's visibility is true/false? example is:
I have two JButtons named "Click 1" and "Click 2", I have a JLabel named "1", 1's visibility is set to false, ...
-2
votes
1answer
61 views
how to handle ==>Argument out of range?
when i load a picture in the picturebox and don't click on the picturebox first it break
when i put the return back in teh code it goes to infenet loop and when i remove it the code breaks..
here is ...
0
votes
3answers
172 views
Program efficiency and java.lang.OutOfMemoryError: Java heap space
The problem is to remove every 2nd element until the last one remains. (Assuming the elements are placed in circle)
My program works fine for small values of n but when i use a large value it gives ...
0
votes
2answers
203 views
Java heap space with LinkedLists and Nodes
For computer Science I'm coding a program that keeps the "tails" end of head, a Node so that I can add and remove from the Node/LinkedList. This isn't entirely difficult, but I've run into an issue ...
0
votes
0answers
76 views
connect timed out issue with ldap
Can somebody explain me the cause of this exception? I have an application in which authentication is happening with LDAP.Once user logs in to the application then after navigation for say 30 mins or ...
0
votes
1answer
162 views
ZF2 retrieve out parameter from SP call
I have created a stored procedure with following declaration:
DELIMITER $$
DROP PROCEDURE IF EXISTS my_test$$
CREATE PROCEDURE my_test(input_number INT, OUT out_number text)
BEGIN
IF ...
0
votes
1answer
66 views
Where can I find out.xml file for an Android Application?
Since I am new to Android I got stuck in a problem that seems to be pretty common for newbies (Error in an XML file: aborting build), after trying to add a new string in my strings.xml file.
I have ...
1
vote
0answers
39 views
mono - how to use ref with CreateInstance or InvokeMethod?
How do I pass by 'ref' using CreateInstance in Mono?
Example:
public MyMethod(ref SomeType data) {...
...
SomeType st = new SomeType();
object handle = Activator.CreateInstance(type, new object[] { ...
0
votes
0answers
160 views
Unmanaged DLL char[] out parameter in C#
I have been trying to get this function call working, and just can't seem to get the out char[] parameters right:
unsigned long eqDepositValidateAccount (const char * pszPIN1,
const char * ...
0
votes
1answer
72 views
Dynamically invoking RavenDB Statistics method regardless of query source
RavenDB provides 2 APIs for querying data, IDocumentQuery<T> for advanced lucene query and IRavenQueryable<T> for a strongly typed linq provider model.
They share a method called ...
4
votes
3answers
170 views
Getting an out parameter of string[] as IEnumerable<string>
Let's say we have a method:
public void SomeMethod(out string[] someArray) { // ... }
Is there a way to do something similar to this:
IEnumerable<string> result;
SomeMethod(out result);
...
0
votes
5answers
131 views
scanner.nextInt(), out of range avoidance?
I've finished a simple program that converts a decimal number to binary (32bit). I would like to implement some type of error message should the user enter in an overflow number (anything over ...
0
votes
1answer
53 views
Need to out 4 variables from c++ to java using jni
I'm good in c# and i need help in JAVA.
I have a c++ function that outs 4 variables
int Func1(int inParam1, unsigned char* inParam2, int *outParam1, int *outParam2, int *outParam3, unsigned char** ...
0
votes
2answers
147 views
Working with WinAPI functions which use C style strings as OUT parameters
Given a WinAPI function which returns it's result via a C style string OUT parameter e.g.:
int WINAPI GetWindowTextW(
_In_ HWND hWnd,
_Out_ LPTSTR lpString,
_In_ int nMaxCount
);
Is ...
0
votes
3answers
82 views
Java reflection to change parameter?
I'm writing a method in Java that I want to simulate references.. Since java doesn't have the out keyword like in C# and doesn't have References/Pointers like in C++, I want to know if I can use ...
1
vote
4answers
50 views
In C#, can I send an out paramater to be used elsewhere
very basic question:
I have a function that is getting called by another part of the code, with the signature:
public override bool DoSomething(Foo f, out string failed)
{
failed = "I failed";
...
2
votes
2answers
100 views
Implicitly-Typed Out Parameters
In a similar vein to this question, I decided to see if it was possible to pull out parameters from a method into implicitly-typed variables without having to define the types. My ideal solution ...
0
votes
2answers
115 views
Get scaling factor of an image when the image goes out of grid
I have a grid that contains an image.
<Grid Name="grid1">
<Image Name="image1" Stretch="None" Source="C:\Users\User\Desktop\image.jpg"/>
</Grid>
If the size of image was ...
0
votes
1answer
27 views
Capturing audio out for use in a web page
I am wondering if it is possible, using JavaScript, php, or any other method to capture general 'audio out' or line out, and send it to be used in a web page.
0
votes
3answers
158 views
Java IndexOutOfBoundsException
I created a little android game but I am getting weird error.
Here is log:
12-31 16:10:22.407: E/AndroidRuntime(12824): FATAL EXCEPTION: Thread-1461
12-31 16:10:22.407: ...
0
votes
0answers
104 views
MessageTimeoutException: Timed out waiting for response in Spring Integration
I am using Spring integration to integrate various components over TCP network. I am setting payload as my own user defined object. I am sending the request to component and recieving the response ...





